From: Kenichi Handa Date: Mon, 26 Mar 2012 05:43:05 +0000 (+0900) Subject: dispextern.h (struct glyph): Fix previous change. Change the bit length of glyphless... X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~363^2 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=9555de5a8685b179ecf0bddf1d384314a3c19a25;p=emacs.git dispextern.h (struct glyph): Fix previous change. Change the bit length of glyphless.ch to 25 (Bug#11082). --- diff --git a/src/ChangeLog b/src/ChangeLog index 860590f9690..f17ae0ba103 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2012-03-26 Kenichi Handa + + * dispextern.h (struct glyph): Fix previous change. Change the + bit length of glyphless.ch to 25 (Bug#11082). + 2012-03-26 Chong Yidong * keyboard.c (Vselection_inhibit_update_commands): New variable. diff --git a/src/dispextern.h b/src/dispextern.h index 6024b67ad28..4804a9e61c6 100644 --- a/src/dispextern.h +++ b/src/dispextern.h @@ -454,7 +454,7 @@ struct glyph /* Length of acronym or hexadecimal code string (at most 8). */ unsigned len : 4; /* Character to display. Actually we need only 22 bits. */ - unsigned ch : 22; + unsigned ch : 25; } glyphless; /* Used to compare all bit-fields above in one step. */